d7c4266516003b0b606787e06d3aa66e588c59c7,olca-app/src/org/openlca/app/editors/systems/StatisticsPage.java,StatisticsPage,createFormContent,#IManagedForm#,36

Before Change


				M.ProductSystemStatistics);
		FormToolkit toolkit = managedForm.getToolkit();
		Composite body = UI.formBody(form, toolkit);
		browser = UI.createBrowser(body, this);
		UI.gridData(browser, true, true);
		form.reflow(true);
	}

After Change


		FormToolkit toolkit = managedForm.getToolkit();
		Composite body = UI.formBody(form, toolkit);
		body.setLayout(new FillLayout());
		UI.createWebView(body, this);
		form.reflow(true);
	}